
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            overflow-x: hidden;
        }
        
        /* Animated Background */
        .animated-bg {
            position: relative;
            background: linear-gradient(135deg, #f5f7fe 0%, #eef2ff 100%);
            overflow: hidden;
        }
        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(37,99,235,0) 70%);
            animation: rotateGlow 25s infinite linear;
            z-index: 0;
        }
        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Breadcrumb Hero */
        .breadcrumb-hero {
            background: linear-gradient(105deg, #0b2b5c 0%, #1e4a8a 100%);
            border-radius: 28px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.2);
        }
        .breadcrumb-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.08"><path fill="white" d="M60,100 L100,40 L140,100 L100,160 Z M100,20 L140,80 L100,140 L60,80 Z" /></svg>');
            background-repeat: repeat;
            background-size: 40px;
            pointer-events: none;
        }
        .breadcrumb-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff, #e0f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .breadcrumb-hero .breadcrumb-nav {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            display: inline-flex;
            padding: 0.5rem 1.4rem;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 0.75rem;
        }
        .breadcrumb-hero .breadcrumb-nav a {
            color: #facc15;
            text-decoration: none;
            transition: 0.2s;
        }
        .breadcrumb-hero .breadcrumb-nav a:hover {
            color: white;
        }
        .breadcrumb-hero .breadcrumb-nav .separator {
            color: #cbd5e1;
            margin: 0 8px;
        }
        .breadcrumb-hero .breadcrumb-nav .current {
            color: white;
            font-weight: 600;
        }
        
        /* Section Title */
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0b2b5c;
            border-left: 5px solid #f59e0b;
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
        
        /* Colorful Cards */
        .service-card {
            border-radius: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
        }
        .service-card .card-inner {
            padding: 1.2rem;
            height: 100%;
            transition: all 0.3s;
        }
        .service-card .icon-box {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.25);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .service-card:hover .icon-box {
            background: rgba(255,255,255,0.4);
            transform: scale(1.05);
        }
        .service-card .icon-box i {
            font-size: 1.6rem;
            color: white;
        }
        .card-title {
            font-weight: 700;
            font-size: 1rem;
            color: white;
        }
        .session-text {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
        }
        
        /* Colorful gradients for cards */
        .grad-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .grad-pink { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .grad-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .grad-green { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .grad-orange { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .grad-lavender { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
        .grad-peach { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
        .grad-sand { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        .grad-teal { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
        .grad-red { background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%); }
        .grad-indigo { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
        .grad-emerald { background: linear-gradient(135deg, #059669, #10b981); }
        .grad-crimson { background: linear-gradient(135deg, #dc2626, #ef4444); }
        
        .btn-action {
            background: linear-gradient(95deg, #1e3a8a, #2563eb);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 8px 18px rgba(37,99,235,0.2);
        }
        .btn-action:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(37,99,235,0.3);
        }
        
        .fade-up {
            animation: fadeUp 0.6s ease-out forwards;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .breadcrumb-hero h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.3rem; }
            .card-title { font-size: 0.85rem; }
        }
  